crypto/md5.digest.s (field)
25 uses
crypto/md5 (current package)
md5.go#L45: s [4]uint32
md5.go#L52: d.s[0] = init0
md5.go#L53: d.s[1] = init1
md5.go#L54: d.s[2] = init2
md5.go#L55: d.s[3] = init3
md5.go#L71: b = byteorder.BEAppendUint32(b, d.s[0])
md5.go#L72: b = byteorder.BEAppendUint32(b, d.s[1])
md5.go#L73: b = byteorder.BEAppendUint32(b, d.s[2])
md5.go#L74: b = byteorder.BEAppendUint32(b, d.s[3])
md5.go#L89: b, d.s[0] = consumeUint32(b)
md5.go#L90: b, d.s[1] = consumeUint32(b)
md5.go#L91: b, d.s[2] = consumeUint32(b)
md5.go#L92: b, d.s[3] = consumeUint32(b)
md5.go#L197: byteorder.LEPutUint32(digest[0:], d.s[0])
md5.go#L198: byteorder.LEPutUint32(digest[4:], d.s[1])
md5.go#L199: byteorder.LEPutUint32(digest[8:], d.s[2])
md5.go#L200: byteorder.LEPutUint32(digest[12:], d.s[3])
md5block.go#L16: a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
md5block.go#L124: dig.s[0], dig.s[1], dig.s[2], dig.s[3] = a, b, c, d